1 /**
2 Copyright: Copyright (c) 2018, Joakim Brännström. All rights reserved.
3 License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
4 Author: Joakim Brännström (joakim.brannstrom@gmx.com)
5 
6 The license of this module is Boost because the code is derived from a pull
7 request for druntime.
8 */
9 module code_checker.from;
10 
11 /** Local imports everywhere.
12 
13 Example:
14 ---
15 void fun(from!"std.string".Path p)
16 ---
17 */
18 template from(string moduleName) {
19     mixin("import from = " ~ moduleName ~ ";");
20 }